Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
See Slack thread for background.
There was a bug in the
install.shscript, where if you were currently running thetigerbinary (most commonly when running the MCP server via an AI tool like Claude Code), then when the script swapped it out for the new binary, the operating system would immediately kill future invocations of the command until all of the existing invocations of the old binary were finished running. This PR fixes it by first removing the old binary withrm -fbefore swapping the new binary into place (fwiw, I don't fully understand what the underlying issue is or why this fixes it, but it does, based on my testing).Closes AGE-209
How to Test
install.shscript if you haven't already:sh ./scripts/install.shtigercommand in your$PATHis the one installed via the script:which tiger(should print~/.local/bin/tigeror~/bin/tiger). If it's not, uninstall the other binaries or update your$PATH.tiger mcp install claude-codeclaude.sh ./scripts/install.shtiger versionPreviously, the last step (running
tiger version) would fail immediately with an error saying it had been killed (you could fix it either by closing the Claude Code session, or manually removing the binary and re-installing). After this PR, the command should execute like normal.